expr.mtl. sorts


stochastic sort

	chose two elements at random, swap positions if in opposite order to a sorted list

	repeat until entire list sorted (if 10 comparisons without an out-of-order, check if sorted)



in-place bubble sort

	move smallest item to end of list

	repeat process, scanning only the items not yet moved



